<script>
const links = document.querySelectorAll(".elementor-icon.elementor-animation-");

links.forEach((link) => {
  if (link.href === window.location.href) {
    link.classList.add("active");
  }
});

</script>


*******************************
کد های css
******************************
.nias-bottom-icon .elementor-icon-box-content{
    position: absolute;
    width: 100%;
    top:20px;
    z-index: -9;
    opacity: 0;
    background-color: white;
    border-radius: 5px;
    transition: all 0.2s linear;
}

.nias-bottom-icon:hover .elementor-icon-box-content{
    opacity: 1;
    top: -40px;
}
.elementor-icon.elementor-animation-{
    padding: 5px
}
.elementor-icon.elementor-animation-.active{
    background-color: #043ccc;
    color: white;
    border-radius: 50%;
}
.nias-bottom-icon .elementor-icon-box-icon{
    
display: flex;
justify-content: center;
align-items: center;
}